Writing Sphinx Extensions
ビルダー
builder 拡張は entry points を使って検出することができますので、 extensions 設定値にリストする必要はありません。
code:setup.py
setup(
# ...
entry_points={
'sphinx.builders': [
'mybuilder = my.extension.module',
],
}
)
Builder extensions should define an entry point in the sphinx.builders group.
The name of the entry point needs to match your builder's name attribute, which is the name passed to the sphinx-build -b option.
この場合でも、拡張の setup() 関数の add_builder() を使用してビルダーを登録する必要があることに注意してください。
テーマ
code:setup.py
setup(
...
entry_points = {
'sphinx.html_themes': [
'name_of_theme = your_package',
]
},
...
)